home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 September / PCWorld_2007-09_cd.bin / system / ntfs / ntfsundelete.exe / {app} / ntpath.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2007-02-05  |  12KB  |  439 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Common pathname manipulations, WindowsNT/95 version.
  5.  
  6. Instead of importing this module directly, import os and refer to this
  7. module as os.path.
  8. '''
  9. import os
  10. import stat
  11. import sys
  12. __all__ = [
  13.     'normcase',
  14.     'isabs',
  15.     'join',
  16.     'splitdrive',
  17.     'split',
  18.     'splitext',
  19.     'basename',
  20.     'dirname',
  21.     'commonprefix',
  22.     'getsize',
  23.     'getmtime',
  24.     'getatime',
  25.     'getctime',
  26.     'islink',
  27.     'exists',
  28.     'isdir',
  29.     'isfile',
  30.     'ismount',
  31.     'walk',
  32.     'expanduser',
  33.     'expandvars',
  34.     'normpath',
  35.     'abspath',
  36.     'splitunc',
  37.     'curdir',
  38.     'pardir',
  39.     'sep',
  40.     'pathsep',
  41.     'defpath',
  42.     'altsep',
  43.     'extsep',
  44.     'devnull',
  45.     'realpath',
  46.     'supports_unicode_filenames']
  47. curdir = '.'
  48. pardir = '..'
  49. extsep = '.'
  50. sep = '\\'
  51. pathsep = ';'
  52. altsep = '/'
  53. defpath = '.;C:\\bin'
  54. if 'ce' in sys.builtin_module_names:
  55.     defpath = '\\Windows'
  56. elif 'os2' in sys.builtin_module_names:
  57.     altsep = '/'
  58.  
  59. devnull = 'nul'
  60.  
  61. def normcase(s):
  62.     '''Normalize case of pathname.
  63.  
  64.     Makes all characters lowercase and all slashes into backslashes.'''
  65.     return s.replace('/', '\\').lower()
  66.  
  67.  
  68. def isabs(s):
  69.     '''Test whether a path is absolute'''
  70.     s = splitdrive(s)[1]
  71.     if s != '':
  72.         pass
  73.     return s[:1] in '/\\'
  74.  
  75.  
  76. def join(a, *p):
  77.     '''Join two or more pathname components, inserting "\\" as needed'''
  78.     path = a
  79.     for b in p:
  80.         b_wins = 0
  81.         if path == '':
  82.             b_wins = 1
  83.         elif isabs(b):
  84.             if path[1:2] != ':' or b[1:2] == ':':
  85.                 b_wins = 1
  86.             elif (len(path) > 3 or len(path) == 3) and path[-1] not in '/\\':
  87.                 b_wins = 1
  88.             
  89.         
  90.         if b_wins:
  91.             path = b
  92.             continue
  93.         None if not len(path) > 0 else b[0] in '/\\'
  94.         None if path[-1] == ':' else b[0] in '/\\'
  95.         path += '\\'
  96.     
  97.     return path
  98.  
  99.  
  100. def splitdrive(p):
  101.     '''Split a pathname into drive and path specifiers. Returns a 2-tuple
  102. "(drive,path)";  either part may be empty'''
  103.     if p[1:2] == ':':
  104.         return (p[0:2], p[2:])
  105.     
  106.     return ('', p)
  107.  
  108.  
  109. def splitunc(p):
  110.     """Split a pathname into UNC mount point and relative path specifiers.
  111.  
  112.     Return a 2-tuple (unc, rest); either part may be empty.
  113.     If unc is not empty, it has the form '//host/mount' (or similar
  114.     using backslashes).  unc+rest is always the input path.
  115.     Paths containing drive letters never have an UNC part.
  116.     """
  117.     if p[1:2] == ':':
  118.         return ('', p)
  119.     
  120.     firstTwo = p[0:2]
  121.     if firstTwo == '//' or firstTwo == '\\\\':
  122.         normp = normcase(p)
  123.         index = normp.find('\\', 2)
  124.         if index == -1:
  125.             return ('', p)
  126.         
  127.         index = normp.find('\\', index + 1)
  128.         if index == -1:
  129.             index = len(p)
  130.         
  131.         return (p[:index], p[index:])
  132.     
  133.     return ('', p)
  134.  
  135.  
  136. def split(p):
  137.     '''Split a pathname.
  138.  
  139.     Return tuple (head, tail) where tail is everything after the final slash.
  140.     Either part may be empty.'''
  141.     (d, p) = splitdrive(p)
  142.     i = len(p)
  143.     while i and p[i - 1] not in '/\\':
  144.         i = i - 1
  145.     head = p[:i]
  146.     tail = p[i:]
  147.     head2 = head
  148.     while head2 and head2[-1] in '/\\':
  149.         head2 = head2[:-1]
  150.     if not head2:
  151.         pass
  152.     head = head
  153.     return (d + head, tail)
  154.  
  155.  
  156. def splitext(p):
  157.     '''Split the extension from a pathname.
  158.  
  159.     Extension is everything from the last dot to the end.
  160.     Return (root, ext), either part may be empty.'''
  161.     i = p.rfind('.')
  162.     if i <= max(p.rfind('/'), p.rfind('\\')):
  163.         return (p, '')
  164.     else:
  165.         return (p[:i], p[i:])
  166.  
  167.  
  168. def basename(p):
  169.     '''Returns the final component of a pathname'''
  170.     return split(p)[1]
  171.  
  172.  
  173. def dirname(p):
  174.     '''Returns the directory component of a pathname'''
  175.     return split(p)[0]
  176.  
  177.  
  178. def commonprefix(m):
  179.     '''Given a list of pathnames, returns the longest common leading component'''
  180.     if not m:
  181.         return ''
  182.     
  183.     prefix = m[0]
  184.     for item in m:
  185.         for i in range(len(prefix)):
  186.             if prefix[:i + 1] != item[:i + 1]:
  187.                 prefix = prefix[:i]
  188.                 if i == 0:
  189.                     return ''
  190.                 
  191.                 break
  192.                 continue
  193.         
  194.     
  195.     return prefix
  196.  
  197.  
  198. def getsize(filename):
  199.     '''Return the size of a file, reported by os.stat()'''
  200.     return os.stat(filename).st_size
  201.  
  202.  
  203. def getmtime(filename):
  204.     '''Return the last modification time of a file, reported by os.stat()'''
  205.     return os.stat(filename).st_mtime
  206.  
  207.  
  208. def getatime(filename):
  209.     '''Return the last access time of a file, reported by os.stat()'''
  210.     return os.stat(filename).st_atime
  211.  
  212.  
  213. def getctime(filename):
  214.     '''Return the creation time of a file, reported by os.stat().'''
  215.     return os.stat(filename).st_ctime
  216.  
  217.  
  218. def islink(path):
  219.     '''Test for symbolic link.  On WindowsNT/95 always returns false'''
  220.     return False
  221.  
  222.  
  223. def exists(path):
  224.     '''Test whether a path exists'''
  225.     
  226.     try:
  227.         st = os.stat(path)
  228.     except os.error:
  229.         return False
  230.  
  231.     return True
  232.  
  233. lexists = exists
  234.  
  235. def isdir(path):
  236.     '''Test whether a path is a directory'''
  237.     
  238.     try:
  239.         st = os.stat(path)
  240.     except os.error:
  241.         return False
  242.  
  243.     return stat.S_ISDIR(st.st_mode)
  244.  
  245.  
  246. def isfile(path):
  247.     '''Test whether a path is a regular file'''
  248.     
  249.     try:
  250.         st = os.stat(path)
  251.     except os.error:
  252.         return False
  253.  
  254.     return stat.S_ISREG(st.st_mode)
  255.  
  256.  
  257. def ismount(path):
  258.     '''Test whether a path is a mount point (defined as root of drive)'''
  259.     (unc, rest) = splitunc(path)
  260.     if unc:
  261.         return rest in ('', '/', '\\')
  262.     
  263.     p = splitdrive(path)[1]
  264.     if len(p) == 1:
  265.         pass
  266.     return p[0] in '/\\'
  267.  
  268.  
  269. def walk(top, func, arg):
  270.     """Directory tree walk with callback function.
  271.  
  272.     For each directory in the directory tree rooted at top (including top
  273.     itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
  274.     dirname is the name of the directory, and fnames a list of the names of
  275.     the files and subdirectories in dirname (excluding '.' and '..').  func
  276.     may modify the fnames list in-place (e.g. via del or slice assignment),
  277.     and walk will only recurse into the subdirectories whose names remain in
  278.     fnames; this can be used to implement a filter, or to impose a specific
  279.     order of visiting.  No semantics are defined for, or required of, arg,
  280.     beyond that arg is always passed to func.  It can be used, e.g., to pass
  281.     a filename pattern, or a mutable object designed to accumulate
  282.     statistics.  Passing None for arg is common."""
  283.     
  284.     try:
  285.         names = os.listdir(top)
  286.     except os.error:
  287.         return None
  288.  
  289.     func(arg, top, names)
  290.     exceptions = ('.', '..')
  291.     for name in names:
  292.         if name not in exceptions:
  293.             name = join(top, name)
  294.             if isdir(name):
  295.                 walk(name, func, arg)
  296.             
  297.         isdir(name)
  298.     
  299.  
  300.  
  301. def expanduser(path):
  302.     '''Expand ~ and ~user constructs.
  303.  
  304.     If user or $HOME is unknown, do nothing.'''
  305.     if path[:1] != '~':
  306.         return path
  307.     
  308.     i = 1
  309.     n = len(path)
  310.     while i < n and path[i] not in '/\\':
  311.         i = i + 1
  312.     if i == 1:
  313.         if 'HOME' in os.environ:
  314.             userhome = os.environ['HOME']
  315.         elif 'HOMEPATH' not in os.environ:
  316.             return path
  317.         else:
  318.             
  319.             try:
  320.                 drive = os.environ['HOMEDRIVE']
  321.             except KeyError:
  322.                 drive = ''
  323.  
  324.             userhome = join(drive, os.environ['HOMEPATH'])
  325.     else:
  326.         return path
  327.     return userhome + path[i:]
  328.  
  329.  
  330. def expandvars(path):
  331.     '''Expand shell variables of form $var and ${var}.
  332.  
  333.     Unknown variables are left unchanged.'''
  334.     if '$' not in path:
  335.         return path
  336.     
  337.     import string as string
  338.     varchars = string.ascii_letters + string.digits + '_-'
  339.     res = ''
  340.     index = 0
  341.     pathlen = len(path)
  342.     while index < pathlen:
  343.         c = path[index]
  344.         if c == "'":
  345.             path = path[index + 1:]
  346.             pathlen = len(path)
  347.             
  348.             try:
  349.                 index = path.index("'")
  350.                 res = res + "'" + path[:index + 1]
  351.             except ValueError:
  352.                 res = res + path
  353.                 index = pathlen - 1
  354.             except:
  355.                 None<EXCEPTION MATCH>ValueError
  356.             
  357.  
  358.         None<EXCEPTION MATCH>ValueError
  359.         if c == '$':
  360.             None if path[index + 1:index + 2] == '$' else None<EXCEPTION MATCH>ValueError
  361.             var = ''
  362.             index = index + 1
  363.             c = path[index:index + 1]
  364.             while c != '' and c in varchars:
  365.                 var = var + c
  366.                 index = index + 1
  367.                 c = path[index:index + 1]
  368.             if var in os.environ:
  369.                 res = res + os.environ[var]
  370.             
  371.             if c != '':
  372.                 res = res + c
  373.             
  374.         else:
  375.             res = res + c
  376.         index = index + 1
  377.     return res
  378.  
  379.  
  380. def normpath(path):
  381.     '''Normalize path, eliminating double slashes, etc.'''
  382.     path = path.replace('/', '\\')
  383.     (prefix, path) = splitdrive(path)
  384.     if prefix == '':
  385.         while path[:1] == '\\':
  386.             prefix = prefix + '\\'
  387.             path = path[1:]
  388.     elif path.startswith('\\'):
  389.         prefix = prefix + '\\'
  390.         path = path.lstrip('\\')
  391.     
  392.     comps = path.split('\\')
  393.     i = 0
  394.     while i < len(comps):
  395.         None if comps[i] in ('.', '') else prefix.endswith('\\')
  396.         i += 1
  397.     if not prefix and not comps:
  398.         comps.append('.')
  399.     
  400.     return prefix + '\\'.join(comps)
  401.  
  402.  
  403. def abspath(path):
  404.     '''Return the absolute version of a path'''
  405.     global abspath
  406.     
  407.     try:
  408.         _getfullpathname = _getfullpathname
  409.         import nt
  410.     except ImportError:
  411.         
  412.         def _abspath(path):
  413.             if not isabs(path):
  414.                 path = join(os.getcwd(), path)
  415.             
  416.             return normpath(path)
  417.  
  418.         abspath = _abspath
  419.         return _abspath(path)
  420.  
  421.     if path:
  422.         
  423.         try:
  424.             path = _getfullpathname(path)
  425.         except WindowsError:
  426.             pass
  427.         except:
  428.             None<EXCEPTION MATCH>WindowsError
  429.         
  430.  
  431.     None<EXCEPTION MATCH>WindowsError
  432.     path = os.getcwd()
  433.     return normpath(path)
  434.  
  435. realpath = abspath
  436. if hasattr(sys, 'getwindowsversion'):
  437.     pass
  438. supports_unicode_filenames = sys.getwindowsversion()[3] >= 2
  439.